home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / string / memcpy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-09  |  243 b   |  13 lines

  1. #include <string.h>
  2.  
  3. #include <proto/exec.h>
  4.  
  5. /************************************************************************/
  6.  
  7. void *(memcpy)(void *Dest, const void *Source, size_t Size)
  8.  
  9. {
  10.   CopyMem((APTR)Source,(APTR)Dest,Size);
  11.   return Dest;
  12. }
  13.